/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
  background-color: #ffffff;
  color: #1f2b3a;
  line-height: 1.5;
}

/* ===== COLOR PALETTE ===== */
:root {
  --primary: #0a3147;        /* deep navy – trust, medical */
  --primary-light: #1f4b6e;
  --secondary: #2f8e9e;      /* teal accent – health, fresh */
  --accent: #57b8c9;
  --light-bg: #f4f9fc;
  --gray-soft: #e6edf2;
  --text-dark: #122231;
  --text-muted: #3e5569;
  --white: #ffffff;
  --border-light: #cbd8e3;
}

/* ===== TYPOGRAPHY & LINKS ===== */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary);
}

h1 {
  font-size: 2.8rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}
h2:after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: var(--secondary);
  margin-top: 0.5rem;
  border-radius: 4px;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  background-color: var(--white);
  box-shadow: 0 4px 12px rgba(0,20,30,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  background: var(--primary);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transform: rotate(10deg);
  transition: 0.2s;
}

.logo-text h1 {
  font-size: 1.7rem;
  margin: 0;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.logo-text span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.nav-links a {
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
}

.nav-links a:hover {
  border-bottom-color: var(--secondary);
  color: var(--primary-light);
}

.btn-contact {
  background: var(--primary);
  color: white !important;
  padding: 0.6rem 1.8rem;
  border-radius: 40px;
  font-weight: 600;
  border: none;
  transition: 0.2s;
  box-shadow: 0 4px 8px rgba(15, 60, 80, 0.2);
}

.btn-contact:hover {
  background: var(--primary-light);
  transform: scale(1.02);
}


/* ===== GLOBAL SECTIONS ===== */
section {
  padding: 4.5rem 0;
}

.section-light {
  background: var(--light-bg);
}

.section-white {
  background: var(--white);
}







    /* ===== HERO SECTION (INNOVATION FOCUS) ===== */
    .hero {
      background: linear-gradient(102deg, #e1eef9 0%, #f9fcff 70%);
      padding: 40px 0 60px;
    }

    .hero .container {
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .hero-content {
      flex: 1 1 400px;
    }

    .hero-badge {
      background: rgba(0,102,161,0.12);
      color: #0066a1;
      display: inline-block;
      padding: 6px 18px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      margin-bottom: 24px;
      border: 1px solid rgba(0,102,161,0.2);
    }

    .hero h1 {
      font-size: 3.3rem;
      font-weight: 700;
      line-height: 1.1;
      color: #002845;
      margin-bottom: 24px;
    }
    .hero h1 i { color: #0066a1; font-style: normal; } /* highlight */

    .hero p {
      font-size: 1.2rem;
      color: #2a4359;
      max-width: 550px;
      margin-bottom: 40px;
    }

    .hero-stats {
      display: flex;
      gap: 36px;
      margin-top: 24px;
    }
    .stat-item {
      display: flex;
      flex-direction: column;
    }
    .stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: #002845;
    }
    .stat-label {
      font-size: 0.95rem;
      color: #4e6b82;
      letter-spacing: 0.3px;
    }

    .hero-image {
      flex: 1 1 350px;
      background: linear-gradient(145deg, #cbdbe9, #ecf3f9);
      border-radius: 30px;
      padding: 30px 20px 20px;
      box-shadow: 20px 20px 30px rgba(0,50,80,0.1);
      text-align: center;
      min-height: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-image .placeholder-svg {
      width: 100%;
    }
    .med-graphic {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .med-graphic .circles {
      display: flex;
      gap: 12px;
      margin-bottom: 24px;
    }
    .circle {
      width: 60px;
      height: 60px;
      background: white;
      border-radius: 50%;
      box-shadow: 0 10px 14px rgba(0,44,75,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0066a1;
      font-size: 24px;
      border: 2px solid rgba(0,102,161,0.2);
    }
    .graphic-caption {
      font-weight: 600;
      color: #00335c;
    }

    /* ===== INNOVATION PILLARS ===== */
    .pillars {
      padding: 80px 0;
      background: white;
    }

    .pillar-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
      margin-top: 20px;
    }

    .pillar-card {
      background: #f8fbfe;
      border-radius: 32px;
      padding: 38px 24px 30px;
      transition: all 0.2s;
      border: 1px solid #e4edf5;
      box-shadow: 0 5px 16px rgba(0,32,64,0.03);
    }
    .pillar-card:hover { transform: translateY(-6px); border-color: #b6d6ec; }

    .pillar-icon {
      background: #d4e8f7;
      width: 70px;
      height: 70px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      color: #0066a1;
      font-size: 32px;
    }

    .pillar-card h3 {
      font-size: 1.8rem;
      font-weight: 600;
      color: #0f3147;
      margin-bottom: 16px;
    }
    .pillar-card p {
      color: #3f5568;
    }

    /* ===== BREAKTHROUGH SOLUTIONS ===== */
    .solutions {
      background: #f0f6fc;
      padding: 80px 0;
    }

    .solutions-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 30px;
    }
    .solution-item {
      background: white;
      flex: 1 1 280px;
      border-radius: 40px;
      padding: 30px;
      box-shadow: 0 12px 28px -8px rgba(0,65,115,0.08);
      border: 1px solid white;
    }

    .solution-item .tag {
      color: #0066a1;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 0.8rem;
      letter-spacing: 1px;
      margin-bottom: 12px;
    }

    .solution-item h4 {
      font-size: 1.7rem;
      font-weight: 600;
      margin-bottom: 18px;
      color: #00263b;
    }

    .solution-item ul {
      list-style: none;
    }
    .solution-item li {
      margin: 14px 0;
      display: flex;
      align-items: center;
      gap: 12px;
      color: #1f3e57;
    }
    .solution-item i.fa-check-circle {
      color: #0066a1;
      font-size: 1.2rem;
    }

    /* ===== RESEARCH & DEVELOPMENT ===== */
    .rd-section {
      padding: 80px 0;
      background: white;
    }
    .rd-wrapper {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      align-items: center;
    }
    .rd-content {
      flex: 1 1 350px;
    }
    .rd-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px 30px;
      margin: 36px 0;
    }
    .rd-stat {
      border-left: 4px solid #0066a1;
      padding-left: 16px;
    }
    .rd-stat .stat-val {
      font-size: 2.4rem;
      font-weight: 700;
      color: #002845;
      line-height: 1.1;
    }
    .rd-image-block {
      flex: 1 1 350px;
      background: #d3e3f2;
      border-radius: 48px;
      padding: 40px 30px;
      text-align: center;
      box-shadow: 16px 16px 0 #aac3d9;
    }
    .microscope-icon {
      font-size: 100px;
      color: #003459;
      opacity: 0.7;
    }
    .rd-image-block p {
      font-weight: 600;
      color: #00335e;
      font-size: 1.2rem;
      background: rgba(255,255,255,0.5);
      display: inline-block;
      padding: 8px 24px;
      border-radius: 60px;
    }

    /* ===== GLOBAL IMPACT ===== */
    .impact {
      background: #002845;
      color: white;
      padding: 64px 0;
    }
    .impact .container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      align-items: center;
    }
    .impact-left h2 {
      font-size: 2.4rem;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .impact-left p {
      color: #bfd9f0;
      font-size: 1.1rem;
      max-width: 450px;
    }
    .impact-numbers {
      display: flex;
      gap: 50px;
    }
    .impact-numbers .stat-number {
      color: white;
      font-size: 2.5rem;
    }
    .impact-numbers .stat-label {
      color: #b4d1e9;
    }

    /* ===== LATEST INNOVATION NEWS ===== */
    .news {
      padding: 80px 0;
    }
    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }
    .news-card {
      background: #f8fafc;
      border-radius: 30px;
      padding: 28px;
      transition: 0.15s;
    }
    .news-card .date {
      color: #0066a1;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .news-card h4 {
      font-size: 1.5rem;
      margin-bottom: 16px;
    }
    .news-card .read-more {
      display: inline-block;
      margin-top: 24px;
      font-weight: 600;
      color: #0066a1;
      border-bottom: 2px solid transparent;
    }
    .news-card .read-more:hover { border-bottom-color: #0066a1; }


    /* fine tuning for clone accuracy */
    .pillar-card i, .solution-item i, .hero i {
      pointer-events: none;
    }

/* ===== CONTACT / FOOTER ===== */
.contact-bar {
  background: var(--primary);
  color: white;
  padding: 2.5rem 0;
}

.contact-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-flex h3 {
  color: white;
  font-size: 2rem;
}

.contact-info {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-info div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  font-size: 1.8rem;
  color: var(--accent);
}

.footer-bottom {
  background: #0b1e2b;
  color: #b0c9da;
  padding: 1.8rem 0;
  font-size: 0.95rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: #d3e4f0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ===== UTILITIES ===== */
.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--primary);
  padding: 0.6rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.2s;
}

.btn-outline:hover {
  background: var(--secondary);
  color: white;
}

hr {
  border: none;
  border-top: 2px solid var(--border-light);
  margin: 2rem 0;
}

/* responsive tweaks */
@media (max-width: 700px) {
  h1 { font-size: 2.2rem; }
  .header-container { flex-direction: column; gap: 0.8rem; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
}
